package sequence
type BoxChars struct {
TopLeft rune
TopRight rune
BottomLeft rune
BottomRight rune
Horizontal rune
Vertical rune
TeeDown rune
TeeRight rune
TeeLeft rune
Cross rune
ArrowRight rune
ArrowLeft rune
SolidLine rune
DottedLine rune
SelfTopRight rune
SelfBottom rune
}
var ASCII = BoxChars{
TopLeft: '+',
TopRight: '+',
BottomLeft: '+',
BottomRight: '+',
Horizontal: '-',
Vertical: '|',
TeeDown: '+',
TeeRight: '+',
TeeLeft: '+',
Cross: '+',
ArrowRight: '>',
ArrowLeft: '<',
SolidLine: '-',
DottedLine: '.',
SelfTopRight: '+',
SelfBottom: '+',
}
var Unicode = BoxChars{
TopLeft: '┌',
TopRight: '┐',
BottomLeft: '└',
BottomRight: '┘',
Horizontal: '─',
Vertical: '│',
TeeDown: '┬',
TeeRight: '├',
TeeLeft: '┤',
Cross: '┼',
ArrowRight: '►',
ArrowLeft: '◄',
SolidLine: '─',
DottedLine: '┈',
SelfTopRight: '┐',
SelfBottom: '┘',
}
 |
The pages are generated with Golds v0.8.2. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |